14419ff132007b531391dd18b9f24d30a9764dae,bundles/extensions/event/src/test/java/org/apache/sling/event/it/ChaosTest.java,ChaosTest,setupJobConsumers,#List#,131

Before Change


                }));
        }
        for(int i=0; i<NUM_PARALLEL_TOPICS; i++) {
            registrations.add(this.registerJobConsumer(PARALLEL_TOPICS[i],

                new JobConsumer() {

                    @Override
                    public JobResult process(final Job job) {
                        return JobResult.OK;
                    }
                }));
        }
        for(int i=0; i<NUM_ROUND_TOPICS; i++) {
            registrations.add(this.registerJobConsumer(ROUND_TOPICS[i],

After Change


                });
        }
        for(int i=0; i<NUM_PARALLEL_TOPICS; i++) {
            this.registerJobConsumer(PARALLEL_TOPICS[i],

                new JobConsumer() {

                    @Override
                    public JobResult process(final Job job) {
                        return JobResult.OK;
                    }
                });
        }
        for(int i=0; i<NUM_ROUND_TOPICS; i++) {
            this.registerJobConsumer(ROUND_TOPICS[i],